Pair Fields

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Syntax

C#
[SerializableAttribute]
public struct Pair<TFirst, TSecond>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Structure Pair(Of TFirst, TSecond)
Visual C++
[SerializableAttribute]
generic<typename TFirst, typename TSecond>
public value class Pair

Type Parameters

TFirst
TSecond

The type exposes the following fields.

Public Fields

  NameDescription
Public fieldFirst
The first element of the pair.
Public fieldSecond
The second element of the pair.

See Also